shortcutOptions

Class: com.microstrategy.web.app.taglibs.ShortcutOptionsTag

Usage:

Custom Tag class to be used for defining a shortcut/option list. For example:
 <web:shortcutOptions type="toolbar" ucase="1" shortcutClass="menu" shortcutSelectedClass="menuSelected">
   <web:shortcutProperty id="tdClass" value="CLASS='menu'" selectedValue="CLASS='menuSelected'" />
     <TD WIDTH="1%" NOWRAP applyProperty="tdClass">
         
       <web:shortcutElement/>
         
       <web:shortcutSeparator> | </web:shortcutSeparator>
     </TD>
 </web:shortcutOptions>
 
As noted on the example above, children custom tags include:
   <web:shortcutElement>
   <web:shortcutProperty>
   <web:shortcutSeparator>
 


Name Required? Description
selected false Indicates which element of the shorcut list shall be marked as selected.
Usage:
The element of the list to be marked as selected can be defined with this attribute, by setting as value the identifier (name) of it.
shortcutClass false Indicates the css class that will be applied to the not-selected element displayed.
All the elements that are not marked as selected will use this css formatting when rendered.
shortcutSelectedClass false Indicates the class that will be applied to the selected element displayed.
The element marked as selected in the collection of shortcuts to render will use this css formatting. For marking an element as selected, its definition on the ShortcutList will have to include it, or if the selected attribute indicates which one it is.
type true Indicates the type or name of shortcut list to display.
Usage:
In the out-of-the-box application samples of shortcut lists that can be rendered using these custom tags include toolbar and help.
ucase false Indicates the upper case property, for displaying the options all in upper case or as defined in the list.
Usage:
If setting this property to true, the elements of the shortcut list to be displayed will be rendered all in upper case. By specifying false as value, or no attribute value defined, the name of the elements will be displayed as specified on the list.